(0) Obligation:
Runtime Complexity TRS:
The TRS R consists of the following rules:
0(#) → #
+(x, #) → x
+(#, x) → x
+(0(x), 0(y)) → 0(+(x, y))
+(0(x), 1(y)) → 1(+(x, y))
+(1(x), 0(y)) → 1(+(x, y))
+(1(x), 1(y)) → 0(+(+(x, y), 1(#)))
+(+(x, y), z) → +(x, +(y, z))
-(#, x) → #
-(x, #) → x
-(0(x), 0(y)) → 0(-(x, y))
-(0(x), 1(y)) → 1(-(-(x, y), 1(#)))
-(1(x), 0(y)) → 1(-(x, y))
-(1(x), 1(y)) → 0(-(x, y))
not(true) → false
not(false) → true
if(true, x, y) → x
if(false, x, y) → y
eq(#, #) → true
eq(#, 1(y)) → false
eq(1(x), #) → false
eq(#, 0(y)) → eq(#, y)
eq(0(x), #) → eq(x, #)
eq(1(x), 1(y)) → eq(x, y)
eq(0(x), 1(y)) → false
eq(1(x), 0(y)) → false
eq(0(x), 0(y)) → eq(x, y)
ge(0(x), 0(y)) → ge(x, y)
ge(0(x), 1(y)) → not(ge(y, x))
ge(1(x), 0(y)) → ge(x, y)
ge(1(x), 1(y)) → ge(x, y)
ge(x, #) → true
ge(#, 0(x)) → ge(#, x)
ge(#, 1(x)) → false
log(x) → -(log'(x), 1(#))
log'(#) → #
log'(1(x)) → +(log'(x), 1(#))
log'(0(x)) → if(ge(x, 1(#)), +(log'(x), 1(#)), #)
*(#, x) → #
*(0(x), y) → 0(*(x, y))
*(1(x), y) → +(0(*(x, y)), y)
*(*(x, y), z) → *(x, *(y, z))
*(x, +(y, z)) → +(*(x, y), *(x, z))
app(nil, l) → l
app(cons(x, l1), l2) → cons(x, app(l1, l2))
sum(nil) → 0(#)
sum(cons(x, l)) → +(x, sum(l))
sum(app(l1, l2)) → +(sum(l1), sum(l2))
prod(nil) → 1(#)
prod(cons(x, l)) → *(x, prod(l))
prod(app(l1, l2)) → *(prod(l1), prod(l2))
mem(x, nil) → false
mem(x, cons(y, l)) → if(eq(x, y), true, mem(x, l))
inter(x, nil) → nil
inter(nil, x) → nil
inter(app(l1, l2), l3) → app(inter(l1, l3), inter(l2, l3))
inter(l1, app(l2, l3)) → app(inter(l1, l2), inter(l1, l3))
inter(cons(x, l1), l2) → ifinter(mem(x, l2), x, l1, l2)
inter(l1, cons(x, l2)) → ifinter(mem(x, l1), x, l2, l1)
ifinter(true, x, l1, l2) → cons(x, inter(l1, l2))
ifinter(false, x, l1, l2) → inter(l1, l2)
Rewrite Strategy: FULL
(1) RenamingProof (EQUIVALENT transformation)
Renamed function symbols to avoid clashes with predefined symbol.
(2) Obligation:
Runtime Complexity Relative TRS:
The TRS R consists of the following rules:
0(#) → #
+'(x, #) → x
+'(#, x) → x
+'(0(x), 0(y)) → 0(+'(x, y))
+'(0(x), 1(y)) → 1(+'(x, y))
+'(1(x), 0(y)) → 1(+'(x, y))
+'(1(x), 1(y)) → 0(+'(+'(x, y), 1(#)))
+'(+'(x, y), z) → +'(x, +'(y, z))
-(#, x) → #
-(x, #) → x
-(0(x), 0(y)) → 0(-(x, y))
-(0(x), 1(y)) → 1(-(-(x, y), 1(#)))
-(1(x), 0(y)) → 1(-(x, y))
-(1(x), 1(y)) → 0(-(x, y))
not(true) → false
not(false) → true
if(true, x, y) → x
if(false, x, y) → y
eq(#, #) → true
eq(#, 1(y)) → false
eq(1(x), #) → false
eq(#, 0(y)) → eq(#, y)
eq(0(x), #) → eq(x, #)
eq(1(x), 1(y)) → eq(x, y)
eq(0(x), 1(y)) → false
eq(1(x), 0(y)) → false
eq(0(x), 0(y)) → eq(x, y)
ge(0(x), 0(y)) → ge(x, y)
ge(0(x), 1(y)) → not(ge(y, x))
ge(1(x), 0(y)) → ge(x, y)
ge(1(x), 1(y)) → ge(x, y)
ge(x, #) → true
ge(#, 0(x)) → ge(#, x)
ge(#, 1(x)) → false
log(x) → -(log'(x), 1(#))
log'(#) → #
log'(1(x)) → +'(log'(x), 1(#))
log'(0(x)) → if(ge(x, 1(#)), +'(log'(x), 1(#)), #)
*'(#, x) → #
*'(0(x), y) → 0(*'(x, y))
*'(1(x), y) → +'(0(*'(x, y)), y)
*'(*'(x, y), z) → *'(x, *'(y, z))
*'(x, +'(y, z)) → +'(*'(x, y), *'(x, z))
app(nil, l) → l
app(cons(x, l1), l2) → cons(x, app(l1, l2))
sum(nil) → 0(#)
sum(cons(x, l)) → +'(x, sum(l))
sum(app(l1, l2)) → +'(sum(l1), sum(l2))
prod(nil) → 1(#)
prod(cons(x, l)) → *'(x, prod(l))
prod(app(l1, l2)) → *'(prod(l1), prod(l2))
mem(x, nil) → false
mem(x, cons(y, l)) → if(eq(x, y), true, mem(x, l))
inter(x, nil) → nil
inter(nil, x) → nil
inter(app(l1, l2), l3) → app(inter(l1, l3), inter(l2, l3))
inter(l1, app(l2, l3)) → app(inter(l1, l2), inter(l1, l3))
inter(cons(x, l1), l2) → ifinter(mem(x, l2), x, l1, l2)
inter(l1, cons(x, l2)) → ifinter(mem(x, l1), x, l2, l1)
ifinter(true, x, l1, l2) → cons(x, inter(l1, l2))
ifinter(false, x, l1, l2) → inter(l1, l2)
S is empty.
Rewrite Strategy: FULL
(3) TypeInferenceProof (BOTH BOUNDS(ID, ID) transformation)
Infered types.
(4) Obligation:
TRS:
Rules:
0(#) → #
+'(x, #) → x
+'(#, x) → x
+'(0(x), 0(y)) → 0(+'(x, y))
+'(0(x), 1(y)) → 1(+'(x, y))
+'(1(x), 0(y)) → 1(+'(x, y))
+'(1(x), 1(y)) → 0(+'(+'(x, y), 1(#)))
+'(+'(x, y), z) → +'(x, +'(y, z))
-(#, x) → #
-(x, #) → x
-(0(x), 0(y)) → 0(-(x, y))
-(0(x), 1(y)) → 1(-(-(x, y), 1(#)))
-(1(x), 0(y)) → 1(-(x, y))
-(1(x), 1(y)) → 0(-(x, y))
not(true) → false
not(false) → true
if(true, x, y) → x
if(false, x, y) → y
eq(#, #) → true
eq(#, 1(y)) → false
eq(1(x), #) → false
eq(#, 0(y)) → eq(#, y)
eq(0(x), #) → eq(x, #)
eq(1(x), 1(y)) → eq(x, y)
eq(0(x), 1(y)) → false
eq(1(x), 0(y)) → false
eq(0(x), 0(y)) → eq(x, y)
ge(0(x), 0(y)) → ge(x, y)
ge(0(x), 1(y)) → not(ge(y, x))
ge(1(x), 0(y)) → ge(x, y)
ge(1(x), 1(y)) → ge(x, y)
ge(x, #) → true
ge(#, 0(x)) → ge(#, x)
ge(#, 1(x)) → false
log(x) → -(log'(x), 1(#))
log'(#) → #
log'(1(x)) → +'(log'(x), 1(#))
log'(0(x)) → if(ge(x, 1(#)), +'(log'(x), 1(#)), #)
*'(#, x) → #
*'(0(x), y) → 0(*'(x, y))
*'(1(x), y) → +'(0(*'(x, y)), y)
*'(*'(x, y), z) → *'(x, *'(y, z))
*'(x, +'(y, z)) → +'(*'(x, y), *'(x, z))
app(nil, l) → l
app(cons(x, l1), l2) → cons(x, app(l1, l2))
sum(nil) → 0(#)
sum(cons(x, l)) → +'(x, sum(l))
sum(app(l1, l2)) → +'(sum(l1), sum(l2))
prod(nil) → 1(#)
prod(cons(x, l)) → *'(x, prod(l))
prod(app(l1, l2)) → *'(prod(l1), prod(l2))
mem(x, nil) → false
mem(x, cons(y, l)) → if(eq(x, y), true, mem(x, l))
inter(x, nil) → nil
inter(nil, x) → nil
inter(app(l1, l2), l3) → app(inter(l1, l3), inter(l2, l3))
inter(l1, app(l2, l3)) → app(inter(l1, l2), inter(l1, l3))
inter(cons(x, l1), l2) → ifinter(mem(x, l2), x, l1, l2)
inter(l1, cons(x, l2)) → ifinter(mem(x, l1), x, l2, l1)
ifinter(true, x, l1, l2) → cons(x, inter(l1, l2))
ifinter(false, x, l1, l2) → inter(l1, l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
(5) OrderProof (LOWER BOUND(ID) transformation)
Heuristically decided to analyse the following defined symbols:
+',
-,
eq,
ge,
log',
*',
app,
sum,
prod,
mem,
interThey will be analysed ascendingly in the following order:
+' < log'
+' < *'
+' < sum
eq < mem
ge < log'
*' < prod
app < inter
mem < inter
(6) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
+', -, eq, ge, log', *', app, sum, prod, mem, inter
They will be analysed ascendingly in the following order:
+' < log'
+' < *'
+' < sum
eq < mem
ge < log'
*' < prod
app < inter
mem < inter
(7) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol +'.
(8) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
-, eq, ge, log', *', app, sum, prod, mem, inter
They will be analysed ascendingly in the following order:
eq < mem
ge < log'
*' < prod
app < inter
mem < inter
(9) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
-(
gen_#:1:true:false3_4(
n108770_4),
gen_#:1:true:false3_4(
n108770_4)) →
gen_#:1:true:false3_4(
0), rt ∈ Ω(1 + n108770
4)
Induction Base:
-(gen_#:1:true:false3_4(0), gen_#:1:true:false3_4(0)) →RΩ(1)
#
Induction Step:
-(gen_#:1:true:false3_4(+(n108770_4, 1)), gen_#:1:true:false3_4(+(n108770_4, 1))) →RΩ(1)
0(-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4))) →IH
0(gen_#:1:true:false3_4(0)) →RΩ(1)
#
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(10) Complex Obligation (BEST)
(11) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
eq, ge, log', *', app, sum, prod, mem, inter
They will be analysed ascendingly in the following order:
eq < mem
ge < log'
*' < prod
app < inter
mem < inter
(12) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
eq(
gen_#:1:true:false3_4(
n111029_4),
gen_#:1:true:false3_4(
n111029_4)) →
true, rt ∈ Ω(1 + n111029
4)
Induction Base:
eq(gen_#:1:true:false3_4(0), gen_#:1:true:false3_4(0)) →RΩ(1)
true
Induction Step:
eq(gen_#:1:true:false3_4(+(n111029_4, 1)), gen_#:1:true:false3_4(+(n111029_4, 1))) →RΩ(1)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) →IH
true
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(13) Complex Obligation (BEST)
(14) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
ge, log', *', app, sum, prod, mem, inter
They will be analysed ascendingly in the following order:
ge < log'
*' < prod
app < inter
mem < inter
(15) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
ge(
gen_#:1:true:false3_4(
n143674_4),
gen_#:1:true:false3_4(
n143674_4)) →
true, rt ∈ Ω(1 + n143674
4)
Induction Base:
ge(gen_#:1:true:false3_4(0), gen_#:1:true:false3_4(0)) →RΩ(1)
true
Induction Step:
ge(gen_#:1:true:false3_4(+(n143674_4, 1)), gen_#:1:true:false3_4(+(n143674_4, 1))) →RΩ(1)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) →IH
true
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(16) Complex Obligation (BEST)
(17) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
log', *', app, sum, prod, mem, inter
They will be analysed ascendingly in the following order:
*' < prod
app < inter
mem < inter
(18) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol log'.
(19) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
*', app, sum, prod, mem, inter
They will be analysed ascendingly in the following order:
*' < prod
app < inter
mem < inter
(20) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
*'(
gen_#:1:true:false3_4(
n242826_4),
gen_#:1:true:false3_4(
0)) →
gen_#:1:true:false3_4(
0), rt ∈ Ω(1 + n242826
4)
Induction Base:
*'(gen_#:1:true:false3_4(0), gen_#:1:true:false3_4(0)) →RΩ(1)
#
Induction Step:
*'(gen_#:1:true:false3_4(+(n242826_4, 1)), gen_#:1:true:false3_4(0)) →RΩ(1)
+'(0(*'(gen_#:1:true:false3_4(n242826_4), gen_#:1:true:false3_4(0))), gen_#:1:true:false3_4(0)) →IH
+'(0(gen_#:1:true:false3_4(0)), gen_#:1:true:false3_4(0)) →RΩ(1)
+'(#, gen_#:1:true:false3_4(0)) →RΩ(1)
#
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(21) Complex Obligation (BEST)
(22) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
*'(gen_#:1:true:false3_4(n242826_4), gen_#:1:true:false3_4(0)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2428264)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
app, sum, prod, mem, inter
They will be analysed ascendingly in the following order:
app < inter
mem < inter
(23) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
app(
gen_nil:cons4_4(
n257263_4),
gen_nil:cons4_4(
b)) →
gen_nil:cons4_4(
+(
n257263_4,
b)), rt ∈ Ω(1 + n257263
4)
Induction Base:
app(gen_nil:cons4_4(0), gen_nil:cons4_4(b)) →RΩ(1)
gen_nil:cons4_4(b)
Induction Step:
app(gen_nil:cons4_4(+(n257263_4, 1)), gen_nil:cons4_4(b)) →RΩ(1)
cons(#, app(gen_nil:cons4_4(n257263_4), gen_nil:cons4_4(b))) →IH
cons(#, gen_nil:cons4_4(+(b, c257264_4)))
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(24) Complex Obligation (BEST)
(25) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
*'(gen_#:1:true:false3_4(n242826_4), gen_#:1:true:false3_4(0)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2428264)
app(gen_nil:cons4_4(n257263_4), gen_nil:cons4_4(b)) → gen_nil:cons4_4(+(n257263_4, b)), rt ∈ Ω(1 + n2572634)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
sum, prod, mem, inter
They will be analysed ascendingly in the following order:
mem < inter
(26) RewriteLemmaProof (LOWER BOUND(ID) transformation)
Proved the following rewrite lemma:
sum(
gen_nil:cons4_4(
n258980_4)) →
gen_#:1:true:false3_4(
0), rt ∈ Ω(1 + n258980
4)
Induction Base:
sum(gen_nil:cons4_4(0)) →RΩ(1)
0(#) →RΩ(1)
#
Induction Step:
sum(gen_nil:cons4_4(+(n258980_4, 1))) →RΩ(1)
+'(#, sum(gen_nil:cons4_4(n258980_4))) →IH
+'(#, gen_#:1:true:false3_4(0)) →RΩ(1)
#
We have rt ∈ Ω(n1) and sz ∈ O(n). Thus, we have ircR ∈ Ω(n).
(27) Complex Obligation (BEST)
(28) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
*'(gen_#:1:true:false3_4(n242826_4), gen_#:1:true:false3_4(0)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2428264)
app(gen_nil:cons4_4(n257263_4), gen_nil:cons4_4(b)) → gen_nil:cons4_4(+(n257263_4, b)), rt ∈ Ω(1 + n2572634)
sum(gen_nil:cons4_4(n258980_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2589804)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
prod, mem, inter
They will be analysed ascendingly in the following order:
mem < inter
(29) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol prod.
(30) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
*'(gen_#:1:true:false3_4(n242826_4), gen_#:1:true:false3_4(0)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2428264)
app(gen_nil:cons4_4(n257263_4), gen_nil:cons4_4(b)) → gen_nil:cons4_4(+(n257263_4, b)), rt ∈ Ω(1 + n2572634)
sum(gen_nil:cons4_4(n258980_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2589804)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
mem, inter
They will be analysed ascendingly in the following order:
mem < inter
(31) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol mem.
(32) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
*'(gen_#:1:true:false3_4(n242826_4), gen_#:1:true:false3_4(0)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2428264)
app(gen_nil:cons4_4(n257263_4), gen_nil:cons4_4(b)) → gen_nil:cons4_4(+(n257263_4, b)), rt ∈ Ω(1 + n2572634)
sum(gen_nil:cons4_4(n258980_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2589804)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
The following defined symbols remain to be analysed:
inter
(33) NoRewriteLemmaProof (LOWER BOUND(ID) transformation)
Could not prove a rewrite lemma for the defined symbol inter.
(34) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
*'(gen_#:1:true:false3_4(n242826_4), gen_#:1:true:false3_4(0)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2428264)
app(gen_nil:cons4_4(n257263_4), gen_nil:cons4_4(b)) → gen_nil:cons4_4(+(n257263_4, b)), rt ∈ Ω(1 + n2572634)
sum(gen_nil:cons4_4(n258980_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2589804)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
No more defined symbols left to analyse.
(35) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
(36) BOUNDS(n^1, INF)
(37) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
*'(gen_#:1:true:false3_4(n242826_4), gen_#:1:true:false3_4(0)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2428264)
app(gen_nil:cons4_4(n257263_4), gen_nil:cons4_4(b)) → gen_nil:cons4_4(+(n257263_4, b)), rt ∈ Ω(1 + n2572634)
sum(gen_nil:cons4_4(n258980_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2589804)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
No more defined symbols left to analyse.
(38) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
(39) BOUNDS(n^1, INF)
(40) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
*'(gen_#:1:true:false3_4(n242826_4), gen_#:1:true:false3_4(0)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2428264)
app(gen_nil:cons4_4(n257263_4), gen_nil:cons4_4(b)) → gen_nil:cons4_4(+(n257263_4, b)), rt ∈ Ω(1 + n2572634)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
No more defined symbols left to analyse.
(41) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
(42) BOUNDS(n^1, INF)
(43) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
*'(gen_#:1:true:false3_4(n242826_4), gen_#:1:true:false3_4(0)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n2428264)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
No more defined symbols left to analyse.
(44) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
(45) BOUNDS(n^1, INF)
(46) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
ge(gen_#:1:true:false3_4(n143674_4), gen_#:1:true:false3_4(n143674_4)) → true, rt ∈ Ω(1 + n1436744)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
No more defined symbols left to analyse.
(47) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
(48) BOUNDS(n^1, INF)
(49) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
eq(gen_#:1:true:false3_4(n111029_4), gen_#:1:true:false3_4(n111029_4)) → true, rt ∈ Ω(1 + n1110294)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
No more defined symbols left to analyse.
(50) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
(51) BOUNDS(n^1, INF)
(52) Obligation:
TRS:
Rules:
0(
#) →
#+'(
x,
#) →
x+'(
#,
x) →
x+'(
0(
x),
0(
y)) →
0(
+'(
x,
y))
+'(
0(
x),
1(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
0(
y)) →
1(
+'(
x,
y))
+'(
1(
x),
1(
y)) →
0(
+'(
+'(
x,
y),
1(
#)))
+'(
+'(
x,
y),
z) →
+'(
x,
+'(
y,
z))
-(
#,
x) →
#-(
x,
#) →
x-(
0(
x),
0(
y)) →
0(
-(
x,
y))
-(
0(
x),
1(
y)) →
1(
-(
-(
x,
y),
1(
#)))
-(
1(
x),
0(
y)) →
1(
-(
x,
y))
-(
1(
x),
1(
y)) →
0(
-(
x,
y))
not(
true) →
falsenot(
false) →
trueif(
true,
x,
y) →
xif(
false,
x,
y) →
yeq(
#,
#) →
trueeq(
#,
1(
y)) →
falseeq(
1(
x),
#) →
falseeq(
#,
0(
y)) →
eq(
#,
y)
eq(
0(
x),
#) →
eq(
x,
#)
eq(
1(
x),
1(
y)) →
eq(
x,
y)
eq(
0(
x),
1(
y)) →
falseeq(
1(
x),
0(
y)) →
falseeq(
0(
x),
0(
y)) →
eq(
x,
y)
ge(
0(
x),
0(
y)) →
ge(
x,
y)
ge(
0(
x),
1(
y)) →
not(
ge(
y,
x))
ge(
1(
x),
0(
y)) →
ge(
x,
y)
ge(
1(
x),
1(
y)) →
ge(
x,
y)
ge(
x,
#) →
truege(
#,
0(
x)) →
ge(
#,
x)
ge(
#,
1(
x)) →
falselog(
x) →
-(
log'(
x),
1(
#))
log'(
#) →
#log'(
1(
x)) →
+'(
log'(
x),
1(
#))
log'(
0(
x)) →
if(
ge(
x,
1(
#)),
+'(
log'(
x),
1(
#)),
#)
*'(
#,
x) →
#*'(
0(
x),
y) →
0(
*'(
x,
y))
*'(
1(
x),
y) →
+'(
0(
*'(
x,
y)),
y)
*'(
*'(
x,
y),
z) →
*'(
x,
*'(
y,
z))
*'(
x,
+'(
y,
z)) →
+'(
*'(
x,
y),
*'(
x,
z))
app(
nil,
l) →
lapp(
cons(
x,
l1),
l2) →
cons(
x,
app(
l1,
l2))
sum(
nil) →
0(
#)
sum(
cons(
x,
l)) →
+'(
x,
sum(
l))
sum(
app(
l1,
l2)) →
+'(
sum(
l1),
sum(
l2))
prod(
nil) →
1(
#)
prod(
cons(
x,
l)) →
*'(
x,
prod(
l))
prod(
app(
l1,
l2)) →
*'(
prod(
l1),
prod(
l2))
mem(
x,
nil) →
falsemem(
x,
cons(
y,
l)) →
if(
eq(
x,
y),
true,
mem(
x,
l))
inter(
x,
nil) →
nilinter(
nil,
x) →
nilinter(
app(
l1,
l2),
l3) →
app(
inter(
l1,
l3),
inter(
l2,
l3))
inter(
l1,
app(
l2,
l3)) →
app(
inter(
l1,
l2),
inter(
l1,
l3))
inter(
cons(
x,
l1),
l2) →
ifinter(
mem(
x,
l2),
x,
l1,
l2)
inter(
l1,
cons(
x,
l2)) →
ifinter(
mem(
x,
l1),
x,
l2,
l1)
ifinter(
true,
x,
l1,
l2) →
cons(
x,
inter(
l1,
l2))
ifinter(
false,
x,
l1,
l2) →
inter(
l1,
l2)
Types:
0 :: #:1:true:false → #:1:true:false
# :: #:1:true:false
+' :: #:1:true:false → #:1:true:false → #:1:true:false
1 :: #:1:true:false → #:1:true:false
- :: #:1:true:false → #:1:true:false → #:1:true:false
not :: #:1:true:false → #:1:true:false
true :: #:1:true:false
false :: #:1:true:false
if :: #:1:true:false → #:1:true:false → #:1:true:false → #:1:true:false
eq :: #:1:true:false → #:1:true:false → #:1:true:false
ge :: #:1:true:false → #:1:true:false → #:1:true:false
log :: #:1:true:false → #:1:true:false
log' :: #:1:true:false → #:1:true:false
*' :: #:1:true:false → #:1:true:false → #:1:true:false
app :: nil:cons → nil:cons → nil:cons
nil :: nil:cons
cons :: #:1:true:false → nil:cons → nil:cons
sum :: nil:cons → #:1:true:false
prod :: nil:cons → #:1:true:false
mem :: #:1:true:false → nil:cons → #:1:true:false
inter :: nil:cons → nil:cons → nil:cons
ifinter :: #:1:true:false → #:1:true:false → nil:cons → nil:cons → nil:cons
hole_#:1:true:false1_4 :: #:1:true:false
hole_nil:cons2_4 :: nil:cons
gen_#:1:true:false3_4 :: Nat → #:1:true:false
gen_nil:cons4_4 :: Nat → nil:cons
Lemmas:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
Generator Equations:
gen_#:1:true:false3_4(0) ⇔ #
gen_#:1:true:false3_4(+(x, 1)) ⇔ 1(gen_#:1:true:false3_4(x))
gen_nil:cons4_4(0) ⇔ nil
gen_nil:cons4_4(+(x, 1)) ⇔ cons(#, gen_nil:cons4_4(x))
No more defined symbols left to analyse.
(53) LowerBoundsProof (EQUIVALENT transformation)
The lowerbound Ω(n1) was proven with the following lemma:
-(gen_#:1:true:false3_4(n108770_4), gen_#:1:true:false3_4(n108770_4)) → gen_#:1:true:false3_4(0), rt ∈ Ω(1 + n1087704)
(54) BOUNDS(n^1, INF)